home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / A-line / Scripts / Smash < prev    next >
Encoding:
Text File  |  2000-06-24  |  113 b   |  11 lines

  1. # Smash
  2.  
  3. Perl -Sx -- "{0}" {"Parameters"}
  4. Exit
  5.  
  6. #!perl
  7.  
  8. my ($name) = @ARGV;
  9. $name =~ tr/ A-Z/-a-z/;
  10. print $name;
  11.